home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / MPW IIGS SC / SC.001.Shell / Pascal Shell / Shell.make next >
Encoding:
Text File  |  1990-06-20  |  642 b   |  32 lines  |  [TEXT/MPS ]

  1. #
  2. #    This makefile builds:
  3. #        The sample application:    Shell
  4. #
  5. #    File:        Shell.make
  6. #    Target:        p.shell
  7. #    Sources:    Shell.p
  8. #                Shell.r
  9. #
  10. #    Copyright Apple Computer, Inc. 1988-1990
  11. #    All rights reserved.
  12. #
  13.  
  14. Shell ƒƒ Shell.make ∂
  15.     Shell.dfork ∂
  16.     Shell.rfork
  17.     DuplicateIIgs -y -mac p.shell :
  18.     
  19. Shell.p.obj ƒ Shell.make Shell.p
  20.     PascalIIgs Shell.p -r -saddr
  21.     
  22. Shell.dfork ƒ Shell.make Shell.p.obj
  23.     LinkIIGS -t S16 "{piigslibraries}"PStart.obj ∂
  24.     Shell.p.obj ∂
  25.     -lib "{piigslibraries}"Plib ∂
  26.     -o Shell.dfork
  27.     Duplicate -d -y Shell.dfork p.shell
  28.     
  29. Shell.rfork ƒ Shell.make Shell.r    
  30.     RezIIgs Shell.r -o Shell.rfork
  31.     Duplicate -r -y Shell.rfork p.shell
  32.